home *** CD-ROM | disk | FTP | other *** search
/ Hyper Animation Series: Viper (Limited Edition) / Hyper Animation Series: VIPER (Limited Edition).iso / pc / SYSTEM / class / BOSS2OBJ.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-04  |  1.6 KB  |  32 lines

  1. class BOSS2OBJ extends EnemyAction {
  2.    private int fxTime = 0;
  3.  
  4.    public BOSS2OBJ(StgFrame var1) {
  5.       super(var1);
  6.    }
  7.  
  8.    public boolean action(EnemyIndex var1) {
  9.       if (this.fxTime < 2097152) {
  10.          int var2 = -65536;
  11.          byte var3 = 0;
  12.          ((StgObjectIndex)var1).movePosition(var2, var3, 0);
  13.       }
  14.  
  15.       this.fxTime += 65536;
  16.       return true;
  17.    }
  18.  
  19.    public boolean checkHitPlayerShip(EnemyIndex var1, PlayerShipIndex var2) {
  20.       return false;
  21.    }
  22.  
  23.    public boolean checkHitPlayerShot(EnemyIndex var1, PlayerShotIndex var2) {
  24.       boolean var3 = false;
  25.       return var3;
  26.    }
  27.  
  28.    public boolean checkHitBom(EnemyIndex var1) {
  29.       return true;
  30.    }
  31. }
  32.